Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.05 KB

File metadata and controls

31 lines (21 loc) · 1.05 KB

Unused Variable Definition

Definition:

  • A defined variable or in parameter is not read before it becomes undefined.

Also Known As:

  • DU Data Flow Anomaly

Code Example:

function f ( in integer i , out integer j ) {
  var integer k := 1;
  j := 1;
}

References:

Quality attributes